home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / demobook / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  730 b   |  25 lines

  1. #!smake
  2.  
  3. include ${ROOT}/usr/include/make/commondefs
  4.  
  5. TARGETS    = demobook
  6.  
  7. LCOPTS    = -cckr
  8. CVERSION=
  9. LLDLIBS = -laudio -limage -lXirisw -lXm -lXt -lgl -lX11 -lm -lmld -lPW
  10.  
  11. CFILES = MainWindow.c AddDemo.c BookFile.c CreateGroup.c DupIcons.c Index.c \
  12.     Message.c Question.c Quit.c Working.c UxXt.c bookdraw.c bookmove.c \
  13.     busycursor.c coloredit.c colorview.c file.c file_ascii.c groups.c \
  14.         icons.c index.c interf.c interfmotif.c shelves.c text3d.c texture.c
  15. HFILES = bookglo.h exbookglo.h exglobals.h exinterf.h globals.h \
  16.     interf.h screenfont.h bookgfx.h exinterfmotif.h \
  17.     bookmove.h shelves.h interfmotif.h UxXt.h 
  18.  
  19. default: $(TARGETS)
  20.  
  21. include ${COMMONRULES}
  22.  
  23. $(TARGETS): $(OBJECTS)
  24.     $(CCF) -o $@ $(OBJECTS) $(LDFLAGS)
  25.